:root {
  --bg: #f3f4f6;
  --bg-soft: #1e2129;
  --text: #1e2129;
  --muted: rgba(30, 33, 41, 0.72);
  --muted-soft: rgba(30, 33, 41, 0.48);
  --accent: #ffd12f;
  --accent-strong: #f2c229;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-soft: rgba(30, 33, 41, 0.035);
  --panel-border: rgba(30, 33, 41, 0.09);
  --shadow: 0 28px 80px rgba(30, 33, 41, 0.12);
  --shadow-accent: 0 14px 28px rgba(255, 209, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at center, rgba(255, 209, 47, 0.04), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.landing {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.image-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(247, 248, 250, 0.08)),
    url("../sd32sdfSS.jpg") center / cover no-repeat;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 356px;
  text-align: center;
  transform: translateY(-8px);
  animation: fade-up 700ms ease-out both;
}

.logo-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, #ffffff, rgba(255, 209, 47, 0.68));
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 26px rgba(255, 209, 47, 0.12),
    0 10px 24px rgba(30, 33, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: rotate(10deg);
}

.logo-mark {
  display: inline-block;
  color: #1e2129;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: rotate(-10deg);
}

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #1e2129;
}

.kicker-dark {
  color: #1e2129;
}

.kicker-accent {
  color: #e3b31b;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 20px;
  color: #1e2129;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wordmark-divider {
  width: 22px;
  height: 25px;
  display: inline-grid;
  align-content: center;
  gap: 5px;
  margin: 0 2px;
}

.wordmark-divider span {
  display: block;
  height: 3px;
  background: #e3b31b;
  border-radius: 999px;
}

.wordmark-divider span:nth-child(1),
.wordmark-divider span:nth-child(3) {
  background: #1e2129;
}

.content p {
  margin: 14px auto 0;
  max-width: 35ch;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.action {
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.action-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.action-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action:hover {
  transform: translateY(-1px);
}

.action-primary {
  color: #1e2129;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  box-shadow: var(--shadow-accent);
}

.action-secondary {
  color: #1e2129;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 241, 244, 0.96)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 33, 41, 0.09);
  box-shadow: 0 12px 26px rgba(30, 33, 41, 0.08);
}

.arrow {
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.microcopy {
  margin-top: 18px;
  color: var(--muted-soft);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(-8px);
  }
}

@media (max-width: 640px) {
  .content {
    max-width: 316px;
    transform: translateY(0);
  }

  .kicker {
    font-size: 1.75rem;
  }

  .wordmark {
    gap: 8px;
    font-size: 1.55rem;
  }

  .wordmark-divider {
    width: 17px;
    height: 21px;
    gap: 4px;
  }

  .wordmark-divider span {
    height: 2px;
  }

  .logo-badge {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 0.95rem;
  }

  .action {
    height: 44px;
    border-radius: 12px;
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
